home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / shell / ta / src / gui.c next >
Encoding:
C/C++ Source or Header  |  1995-05-04  |  594 b   |  33 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <winb.h>
  4. #include <te.h>
  5. #include <fntb.h>
  6. #include <gui.h>
  7.  
  8. extern int    HyperID ;
  9. extern int    MJ_BASEOBJ ;
  10.  
  11. #define ALIGN    4
  12. #define OFFSET(type) (sizeof(MMIPACKET) + (sizeof(type)+ALIGN-1)/ALIGN*ALIGN)
  13.  
  14. /*    MMI_init 用データ    */
  15.  
  16. /*    ヘッダ    */
  17.  
  18. MMIINIT    initDataGUI = { "MmiInit",   1, 0 } ;
  19.  
  20. /* HyperID */
  21.  
  22. static MMIPACKET d001 = {    &HyperID,
  23.                             &MJ_BASEOBJ,
  24.                             &MJ_HYPER,
  25.                             0,
  26.                             MS_NONE
  27.                         } ;
  28. static HYPER    d001d = {    MS_NONEL40,
  29.                                0,   0,   5,   5, 0, 0, 0,
  30.                             MS_NONEL40,
  31.                         } ;
  32.  
  33.